Начиная с v0.17 легко добавить внешний верстак, используя Addon Manager. Обычному пользователю ничего не требуется кроме использования этого инструмента.
Читайте далее для получения дополнительной информации относительно установки верстаков.
Workbenches are nothing more than collections of files that are placed in a folder. This folder is usually compressed into a zip archive. On installation, this folder is simply uncompressed and copied to
$ROOT_DIR/Mod/
where $ROOT_DIR
is a top level directory searched by FreeCAD on startup. This is essentially what the Addon Manager does.
The Mod/
directories are scanned every time FreeCAD is started, and the available workbenches are automatically added.
Workbenches installed in this way will be available to all users. Depending on your system, you might need administrator privileges to access the installation directory.
Copy the workbench folder into $INSTALL_DIR/Mod/
, where $INSTALL_DIR
is the FreeCAD installation directory.
/usr/share/freecad/Mod/
C:\Program Files\FreeCAD\Mod\
/Applications/FreeCAD/Mod/
Workbenches installed in this way will be available only to one user, but will not require any administrator privileges.
Copy the workbench folder into $USER_DIR/Mod/
, where $USER_DIR
is the FreeCAD directory for a particular username
(you can find the latter by typing App.getUserAppDataDir()
in the Python console).
/home/username/.local/share/FreeCAD/Mod/
%APPDATA%\FreeCAD\Mod\
, which is usually C:\Users\username\Appdata\Roaming\FreeCAD\Mod\
/Users/username/Library/Application Support/FreeCAD/Mod/
.
Дополнительная информация о том, как создать пользовательский верстак, может быть найдена на хабе опытных пользователей и хабе разработчиков.
Смотрите так же детальное описание как установить дополнительные верстаки.